aboutsummaryrefslogtreecommitdiffstats
path: root/pages/category/[id].vue
blob: 3189d2a07d18eea96bef8d2356377cdd4d19bd1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<script setup lang="ts">
import { useSessionStore } from '@/stores/session';

definePageMeta({
  layout: 'editor'
})

const sessionStore = useSessionStore();
const route = useRoute();

const categoryId = route.params.id as string;

const categoryName = sessionStore.getCategoryById(categoryId)?.display.name;
</script>

<template>
  <PageHeader>
    <span id="path">
      <font-awesome-icon class="icon" :icon="['fas', 'fa-folder']" />
      <span class="title" v-if="categoryName">{{ stripColorCodes(categoryName) }} </span>
      <code>({{ categoryId }})</code>
    </span>
    <span id="controls" class="control-group">
      <Button type="solid" :disabled="true" :icon="['fas', 'fa-save']" :label="'Save'"></Button>
    </span>
  </PageHeader>

  <div id="options-container">
    <EditorCategoryOptionsPanel :categoryId="categoryId" />
    <EditorCategoryChildrenOptionsPanel :categoryId="categoryId" />
  </div>
</template>

<style scoped>
#pane-container {
  width: 100%;
  flex-grow: 1;
  height: calc(100vh - 73px);
  max-height: calc(100vh - 73px);
}

#options-container {
  width: 100%;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  overflow: auto;
  max-height: calc(100% - 55px);
}

header {
  border-bottom: 1px solid var(--color-border);
}
</style>